home *** CD-ROM | disk | FTP | other *** search
/ Aminet 1 (Walnut Creek) / Aminet - June 1993 [Walnut Creek].iso / aminet / dev / lang / pcq12b.lzh / Include / Utils / DOSUtils.i < prev    next >
Text File  |  1990-08-27  |  361b  |  19 lines

  1. {
  2.     DOSUtils.i for PCQ Pascal
  3.  
  4.     A couple of routines to make using DOS a little easier.
  5.     The source code for these routines is under Runtime/Extras.
  6. }
  7.  
  8. {$I "Include:Libraries/DOS.i"}
  9.  
  10. Function APTRtoBPTR(a : Address) : BPTR;
  11.     External;
  12.  
  13. Function BPTRtoAPTR(b : BPTR) : Address;
  14.     External;
  15.  
  16. Function GetFileHandle(var f : Text) : FileHandle;
  17.     External;
  18.  
  19.